.b-testimonial {
	display: flex;
	position: relative;
	align-items: flex-start;
}

.b-testimonial .b-author {
	flex-shrink: 0;
	padding: 0.5rem;
	color: white;
	background-color: var(--b-4eg-blue-1);
}

.b-testimonial .b-author span {
	font-weight: bolder;
}

.b-testimonial .b-quote {
	padding: 1rem 0.5rem 0.5rem 0.5rem;
}

.b-testimonial .b-behind {
	position: absolute;
	
/* 	inset: 0.5rem 0 0 0.5rem; */
	top: 0.5rem;
	right: 0;
	bottom: 0;
	left: 0.5rem;
	
	z-index: -1;
	background-color: #f5f5f5;
}

@media only screen and (max-width: 1024px) {
	.b-testimonial {
		display: block;
	}
	.b-testimonial .b-author {
		float: left;
		margin-right: 0.5rem;
	}
	.b-testimonial .b-quote {
		padding: 1rem 0.5rem 0.5rem 1rem;
	}
}